home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / messaging / messages / IMessage.as < prev   
Encoding:
Text File  |  2008-05-21  |  885 b   |  37 lines

  1. package mx.messaging.messages
  2. {
  3.    public interface IMessage
  4.    {
  5.       function get body() : Object;
  6.       
  7.       function set body(param1:Object) : void;
  8.       
  9.       function get clientId() : String;
  10.       
  11.       function set timeToLive(param1:Number) : void;
  12.       
  13.       function get messageId() : String;
  14.       
  15.       function set messageId(param1:String) : void;
  16.       
  17.       function set headers(param1:Object) : void;
  18.       
  19.       function get headers() : Object;
  20.       
  21.       function get destination() : String;
  22.       
  23.       function set clientId(param1:String) : void;
  24.       
  25.       function get timeToLive() : Number;
  26.       
  27.       function get timestamp() : Number;
  28.       
  29.       function toString() : String;
  30.       
  31.       function set timestamp(param1:Number) : void;
  32.       
  33.       function set destination(param1:String) : void;
  34.    }
  35. }
  36.  
  37.